home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 17
/
AMIGAplus Sonderheft 17 (1999)(ICP)(DE)[!].iso
/
Patch
/
Breathless
/
Install_English
< prev
next >
Wrap
Text File
|
1996-04-27
|
2KB
|
115 lines
;
; Breathless Installer Utility
;
; This script is Copyright ©1995 by FIELDS of VISION Software Design
;
(
; Setup English strings
(set #intro
(cat
"- BREATHLESS 3D engine v1.1 68060 -\n"
"\n"
"Copyright ©1995-96\n"
"by\n"
"FIELDS of VISION Software Design\n"
)
)
(set #askdir
(cat
"Select where you would like to copy "
"Breathless 3d engine v1.1 68060"
)
)
(set #askdir_help
(cat
"Breathless 3d engine v1.1 68060 executable will "
"be installed in the directory of your choice.\n\n"
)
)
(set #yes
(cat
"Yes"
)
)
(set #no
(cat
"No"
)
)
(set #quit
(cat
"Quit"
)
)
(set #installed
(cat
"Breathless 3d engine v1.1 68060 will be installed in "
)
)
(set #copyingexe
(cat
"Copying Breathless 1.1 68060 executable..."
)
)
(set #goodbye
(cat
"Thank you! Enjoy with Breathless!"
)
)
; Start! Show intro message...
(message #intro)
; Ask where to install breathless directory...
(if (exists "BREATHLESS:")
((set @default-dest (expandpath "BREATHLESS:")))
)
(set destdir
(askdir
(prompt #askdir)
(help #askdir_help)
(default @default-dest)
(disk)
)
)
(set @default-dest destdir)
; Prompt for choosed dir
(message #installed @default-dest)
; Start copy
(complete 0)
; Install the Breathless executable file
(working #copyingexe)
(copyfiles
(source "Breathless")
(dest @default-dest)
(infos)
)
(complete 100)
; Say goodbye
(message #goodbye)
)